ITSS Conformance Test Patch

Chris Watmore chris.watmore at gmail.com
Tue May 24 13:09:51 CDT 2005


This patch adds tests for the itss dll. Specifically it tests
whether a chm file can be read through itss, and that the files
compiled into it can be extracted.

The test runs with no errors under Windows XP. A fixme message is displayed
upon a call to CoCreateInstance with the ITStorage clsid when run under
Wine. For more info see the documentation in itsstest.c.

Address suggestions, questions, or other comments to:
chris.watmore at gmail.com

Changelog:
* configure.ac
  added dlls/itss/tests/Makefile to be generated
* dlls/itss/tests/Makefile.in
  standard Makefile.in for tests
* dlls/itss/tests/hexify.pl
  script to convert files to C-style hex arrays
* dlls/itss/tests/gen_itsstestfiles.sh
  script that runs hhc.exe to make the chm and converts this and hhintro.htm
  to C-style hex arrays in new file itsstestfiles.h
* dlls/itss/tests/hhintro.htm
  file that is compiled into chm
* dlls/itss/tests/ITSSTest.hhp
  file instructing hhc.exe how to make the chm
* dlls/itss/tests/itsstest.c
  actual test code
* dlls/itss/tests/itsstestfiles.h
  header file containing hex arrays of files used by the test

diff -Naur wine/configure.ac~ wine/configure.ac
--- wine/configure.ac~ 2005-03-05 03:19:14.000000000 -0800
+++ wine/configure.ac 2005-03-10 20:23:17.000000000 -0800
@@ -1576,6 +1576,7 @@
 dlls/iphlpapi/Makefile
 dlls/iphlpapi/tests/Makefile
 dlls/itss/Makefile
+dlls/itss/tests/Makefile
 dlls/kernel/Makefile
 dlls/kernel/tests/Makefile
 dlls/lzexpand/Makefile
diff -Naur /dev/null wine/dlls/itss/tests/Makefile.in
--- /dev/null 2005-03-17 11:21:14.000000000 -0800
+++ wine/dlls/itss/tests/Makefile.in 2005-03-10 20:35:41.000000000 -0800
@@ -0,0 +1,13 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+TESTDLL   = itss.dll
+IMPORTS   = ole32
+
+CTESTS = \
+ itsstest.c
+
+ at MAKE_TEST_RULES@
+
+### Dependencies:
diff -Naur /dev/null wine/dlls/itss/tests/hexify.pl
--- /dev/null 2005-03-17 11:21:14.000000000 -0800
+++ wine/dlls/itss/tests/hexify.pl 2005-05-23 00:29:37.000000000 -0700
@@ -0,0 +1,31 @@
+#!/usr/bin/perl
+# hexify.pl
+# Takes a list of filenames on stdin and create a C data array for each one.
+# Copyright Dan Kegel 2005
+# Licensed under LGPL
+# Modified slightly by Chris Watmore
+
+# no input record separator
+undef $/;
+
+foreach $file (@ARGV) {
+       open FILE, $file || die;
+       binmode FILE;
+
+       # munge filename into C variable name
+       $varname = $file;
+       $varname =~ s/\./_/;
+
+       print "const static char name_$varname"."[] = \"$file\";\n";
+       print "const static char file_$varname"."[] = {\n";
+       while (read(FILE, $buffer, 12)) {
+               $buffer =~ s/(.|\n)/'0x' . unpack('H2', $1).', '/ge;
+               $buffer =~ s/0x00, /0,/g;
+               print "\t$buffer\n";
+       }
+       close FILE;
+
+       print "};\n\n";
+}
+
+
diff -Naur /dev/null wine/dlls/itss/tests/gen_itsstestfiles.sh
--- /dev/null 2005-03-17 11:21:14.000000000 -0800
+++ wine/dlls/itss/tests/gen_itsstestfiles.sh 2005-05-22
23:13:45.000000000 -0700
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+#This file runs the html help command line compiler to generate the file
+#ITSSTest.chm. It then creates the header file containing the test files.
+#Note that hhc.exe may not currently run under wine and so you can run
+#this script in cygwin after downloading and installing htmlhelp.exe from:
+#http://go.microsoft.com/fwlink/?LinkId=14188
+#Also the location that you install htmlhelp.exe must be in the path 
+#environment variable before this is run, and hexify.pl, ITSSTest.hhp, and
+#hhintro.htm must be in the current directory.
+
+hhc.exe ITSSTest.hhp
+perl hexify.pl hhintro.htm ITSSTest.chm > itsstestfiles.h
+rm ITSSTest.chm
+
diff -Naur /dev/null wine/dlls/itss/tests/hhintro.htm
--- /dev/null 2005-03-17 11:21:14.000000000 -0800
+++ wine/dlls/itss/tests/hhintro.htm 2005-03-14 21:44:28.000000000 -0800
@@ -0,0 +1,16 @@
+<html>
+<head>
+<title> ITSSTEST! </title>
+<head>
+<body background="FFFFFF" link="blue" vlink="teal" 
+alink="purple" face="magneto", "arial">
+
+<font size="3">
+
+TEST START PAGE
+
+</font>
+
+
+</body>
+</html>
\ No newline at end of file
diff -Naur /dev/null wine/dlls/itss/tests/ITSSTest.hhp
--- /dev/null 2005-03-17 11:21:14.000000000 -0800
+++ wine/dlls/itss/tests/ITSSTest.hhp 2005-03-14 21:44:16.000000000 -0800
@@ -0,0 +1,12 @@
+[OPTIONS]
+Compatibility=1.1 or later
+Compiled file=ITSSTest.chm
+Default topic=hhintro.htm
+Display compile progress=No
+Language=0x409 English (United States)
+
+
+[FILES]
+hhintro.htm
+
+
diff -Naur /dev/null wine/dlls/itss/tests/itsstest.c
--- /dev/null 2005-03-17 11:21:14.000000000 -0800
+++ wine/dlls/itss/tests/itsstest.c 2005-05-22 06:19:17.000000000 -0700
@@ -0,0 +1,193 @@
+/*
+ * Unit test suite for ITSS functions
+ *
+ * Copyright 2005 Chris Watmore
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * 
+ * This code tests itss functionality, by checking if a file in ITOL/ITLS
+ * format (.chm) can be read.
+ *
+ * The test creates a chm file from a byte array, and then parses the chm
+ * contents until it finds the htm file that was compiled into it. This file is
+ * then extracted from the chm and compared with the byte array for the actual
+ * htm file. The byte arrays were created using the hexify.pl program written 
+ * by Dan Kegel, which should be included in the tools folder of wine now.
+ * It is also included in this patch.
+ * 
+ * The chm file should be called ITSSTest.chm if more complex test cases are
+ * to be implemented later since that name is in the code.
+ *
+ * The header file "itsstestfiles.h" contains byte arrays produced by hexify.pl
+ * This test also makes explicit use of the interface defined in itss.h, which
+ * is already included in the wine source. This file (or something like it) is
+ * also needed to run this test on windows, since the interface for the 
+ * IITStorage object is not public. GUIDs are also defined in itss.h.
+ *
+ * Also note that in order to run the html help command compiler (hhc.exe) 
+ * in wine you must downlaod htmlhelp.exe from: 
+ * http://go.microsoft.com/fwlink/?LinkId=14188 and install it.
+ * Depending on the version of wine you are running it may or may not install.
+ * If it doesn't install then you can install it in windows and make the chm 
+ * there (a cygwin script is included for this purpose), or you can  
+ * transfer hhc.exe along with possibly hha.dll or W95inf32.dll and other files
+ * installed with it and run hhc in wine (not recommended). 
+ * Note you don't need to do any of this unless you want to modify the test 
+ * to use a different chm file
+ */
+
+
+#include <windows.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <windef.h>
+#include <winbase.h>
+#include <initguid.h>
+
+#include "itsstestfiles.h"
+
+
+#ifndef STANDALONE
+#include "wine/test.h"
+#include "../itss.h"
+#define ok2 ok
+#define ok3 ok
+#else
+/* To build outside Wine tree, compile with:
+ cl -DSTANDALONE -D_X86_ ITSSTest.c ole32.lib */
+#include <assert.h>
+#include <stdio.h>
+#include "itss.h"
+#define START_TEST(name) main(int argc, char **argv)
+#define ok(condition, msg)       \
+        do { if(!(condition)) {  \
+        fprintf(stderr,"failed at %d, msg:" msg "\n",__LINE__); \
+        exit(1);         \
+        } } while(0)
+#define ok2(condition, msg, arg) \
+        do { if(!(condition)) {  \
+        fprintf(stderr,"failed at %d, msg:" msg "\n",__LINE__, arg); \
+        exit(1);         \
+        } } while(0)
+#define ok3(condition, msg, arg1, arg2) \
+        do { if(!(condition)) {  \
+        fprintf(stderr,"failed at %d, msg:" msg "\n",__LINE__, arg1, arg2); \
+        exit(1);         \
+        } } while(0)
+#define todo_wine
+
+#endif
+
+
+HANDLE CreateFileB(const char filename[], const char file[], size_t fsize){
+
+  HANDLE filehndl;
+  DWORD ret;
+
+  filehndl = CreateFile(filename, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
+                        0, 0);
+  ok(filehndl != INVALID_HANDLE_VALUE, "Could not create test file\n");
+  ok2(WriteFile(filehndl, file, fsize, &ret, 0), 
+                "WriteFile: error %ld\n", GetLastError());
+  ok(ret == fsize, "Wrote wrong number of bytes to file with WriteFile()\n");
+  CloseHandle(filehndl);
+
+  if(filehndl == INVALID_HANDLE_VALUE || ret != fsize)
+    return NULL;
+  else
+    return filehndl;
+
+}
+
+
+START_TEST(itsstest)
+{
+  HRESULT hr;
+  IITStorage* pIITStor;
+  IStorage* pStor;
+  PWCHAR pwzCHMFile = L"ITSSTest.chm";
+  IEnumSTATSTG *pEnum = NULL;
+  STATSTG entry = {0};
+  IStream* pStream = NULL;
+  ULONG cbRead, cbSize = 0;
+  LPVOID pBuffer1;
+  char temp[128];
+  size_t filesize=0;
+
+  if(CreateFileB(name_ITSSTest_chm, file_ITSSTest_chm, 
+             sizeof(file_ITSSTest_chm) )==NULL)
+    exit(1);
+
+  CoInitialize(NULL);
+
+  hr = CoCreateInstance(&CLSID_ITStorage, NULL, CLSCTX_INPROC_SERVER, 
+                        &IID_IITStorage, (void **) &pIITStor);
+  ok2(SUCCEEDED(hr), "CoCreateInstance failed with error code: %lX\n", hr);
+
+  hr = pIITStor->lpVtbl->StgOpenStorage(pIITStor, pwzCHMFile, NULL, STGM_READ
+                                    | STGM_SHARE_DENY_WRITE, NULL, 0, &pStor);
+  ok2(SUCCEEDED(hr), "StgOpenStorage failed with error code: %lX\n", hr);
+ 
+
+  hr = pStor->lpVtbl->EnumElements(pStor, 0, NULL, 0, &pEnum);
+  ok2(SUCCEEDED(hr), "EnumElements failed with error code: %lX\n", hr);
+
+  while (pEnum->lpVtbl->Next(pEnum, 1, &entry, NULL)==S_OK){
+   
+    /*converts wide character array to multi-byte*/
+    wcstombs(temp, entry.pwcsName, 128); 
+   
+    if(strcmp((const char *) temp, name_hhintro_htm) == 0){
+      hr = pStor->lpVtbl->OpenStream(pStor, entry.pwcsName, NULL, STGM_READ, 
+                                     0, &pStream);
+      ok3(SUCCEEDED(hr),"OpenStream failed. Error code= %lX. Entry name= %S\n",
+                    hr, entry.pwcsName);
+
+      hr = pStream->lpVtbl->Stat(pStream, &entry, STATFLAG_NONAME);
+      ok3(SUCCEEDED(hr),"Stat failed. Error code= %lX. Entry name= %S\n",
+                        hr, entry.pwcsName);
+
+      cbSize = (ULONG) entry.cbSize.QuadPart;
+      cbRead = cbSize;
+
+      pBuffer1 = (LPVOID) LocalAlloc(LPTR, cbSize);
+      hr = pStream->lpVtbl->Read(pStream, pBuffer1, cbSize, &cbRead);
+ 
+      filesize = sizeof(file_hhintro_htm);
+
+      ok3(filesize==cbRead, "Extracted file size is not equal to the expected \
+         file size. Bytes read from chm= %lX, Size of actual file= %X\n",
+         cbRead, filesize);
+      
+      ok2(0==memcmp(pBuffer1, (LPVOID)file_hhintro_htm, filesize),
+        "Memcmp failed, File from chm could not be extracted correctly, \
+        though the file sizes were the same: %X bytes\n", filesize);
+  
+      LocalFree(pBuffer1);
+      hr = pStream->lpVtbl->Release(pStream);
+      ok2(SUCCEEDED(hr), "Stream Release failed with error code: %lX\n", hr);
+
+    }
+  }
+
+  hr = pEnum->lpVtbl->Release(pEnum);
+  ok2(SUCCEEDED(hr), "IEnumSTATSTG Release failed with error code: %lX\n", hr);
+       
+  CoUninitialize(); 
+  
+  ok(DeleteFile(name_ITSSTest_chm), "DeleteFile failed to delete chm file\n");
+}
+
+
diff -Naur /dev/null wine/dlls/itss/tests/itsstestfiles.h
--- /dev/null 2005-03-17 11:21:14.000000000 -0800
+++ wine/dlls/itss/tests/itsstestfiles.h 2005-05-23 00:25:44.000000000 -0700
@@ -0,0 +1,894 @@
+const static char name_hhintro_htm[] = "hhintro.htm";
+const static char file_hhintro_htm[] = {
+ 0x3c, 0x68, 0x74, 0x6d, 0x6c, 0x3e, 0x0d, 0x0a, 0x3c, 0x68, 0x65, 0x61, 
+ 0x64, 0x3e, 0x0d, 0x0a, 0x3c, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3e, 0x20, 
+ 0x49, 0x54, 0x53, 0x53, 0x54, 0x45, 0x53, 0x54, 0x21, 0x20, 0x3c, 0x2f, 
+ 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3e, 0x0d, 0x0a, 0x3c, 0x68, 0x65, 0x61, 
+ 0x64, 0x3e, 0x0d, 0x0a, 0x3c, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x62, 0x61, 
+ 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3d, 0x22, 0x46, 0x46, 
+ 0x46, 0x46, 0x46, 0x46, 0x22, 0x20, 0x6c, 0x69, 0x6e, 0x6b, 0x3d, 0x22, 
+ 0x62, 0x6c, 0x75, 0x65, 0x22, 0x20, 0x76, 0x6c, 0x69, 0x6e, 0x6b, 0x3d, 
+ 0x22, 0x74, 0x65, 0x61, 0x6c, 0x22, 0x20, 0x0d, 0x0a, 0x61, 0x6c, 0x69, 
+ 0x6e, 0x6b, 0x3d, 0x22, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x22, 0x20, 
+ 0x66, 0x61, 0x63, 0x65, 0x3d, 0x22, 0x6d, 0x61, 0x67, 0x6e, 0x65, 0x74, 
+ 0x6f, 0x22, 0x2c, 0x20, 0x22, 0x61, 0x72, 0x69, 0x61, 0x6c, 0x22, 0x3e, 
+ 0x0d, 0x0a, 0x0d, 0x0a, 0x3c, 0x66, 0x6f, 0x6e, 0x74, 0x20, 0x73, 0x69, 
+ 0x7a, 0x65, 0x3d, 0x22, 0x33, 0x22, 0x3e, 0x0d, 0x0a, 0x0d, 0x0a, 0x54, 
+ 0x45, 0x53, 0x54, 0x20, 0x53, 0x54, 0x41, 0x52, 0x54, 0x20, 0x50, 0x41, 
+ 0x47, 0x45, 0x0d, 0x0a, 0x0d, 0x0a, 0x3c, 0x2f, 0x66, 0x6f, 0x6e, 0x74, 
+ 0x3e, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x3c, 0x2f, 0x62, 0x6f, 0x64, 
+ 0x79, 0x3e, 0x0d, 0x0a, 0x3c, 0x2f, 0x68, 0x74, 0x6d, 0x6c, 0x3e, 
+};
+
+const static char name_ITSSTest_chm[] = "ITSSTest.chm";
+const static char file_ITSSTest_chm[] = {
+ 0x49, 0x54, 0x53, 0x46, 0x03, 0,0,0,0x60, 0,0,0,
+ 0x01, 0,0,0,0x96, 0x45, 0xff, 0x48, 0x09, 0x04, 0,0,
+ 0x10, 0xfd, 0x01, 0x7c, 0xaa, 0x7b, 0xd0, 0x11, 0x9e, 0x0c, 0,0xa0, 
+ 0xc9, 0x22, 0xe6, 0xec, 0x11, 0xfd, 0x01, 0x7c, 0xaa, 0x7b, 0xd0, 0x11, 
+ 0x9e, 0x0c, 0,0xa0, 0xc9, 0x22, 0xe6, 0xec, 0x60, 0,0,0,
+ 0,0,0,0,0x18, 0,0,0,0,0,0,0,
+ 0x78, 0,0,0,0,0,0,0,0x54, 0x10, 0,0,
+ 0,0,0,0,0xcc, 0x10, 0,0,0,0,0,0,
+ 0xfe, 0x01, 0,0,0,0,0,0,0xaf, 0x28, 0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0x49, 0x54, 0x53, 0x50, 0x01, 0,0,0,0x54, 0,0,0,
+ 0x0a, 0,0,0,0,0x10, 0,0,0x02, 0,0,0,
+ 0x01, 0,0,0,0xff, 0xff, 0xff, 0xff, 0,0,0,0,
+ 0,0,0,0,0xff, 0xff, 0xff, 0xff, 0x01, 0,0,0,
+ 0x09, 0x04, 0,0,0x6a, 0x92, 0x02, 0x5d, 0x2e, 0x21, 0xd0, 0x11, 
+ 0x9d, 0xf9, 0,0xa0, 0xc9, 0x22, 0xe6, 0xec, 0x54, 0,0,0,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
+ 0x50, 0x4d, 0x47, 0x4c, 0x46, 0x0d, 0,0,0,0,0,0,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x2f, 0,0,
+ 0,0x08, 0x2f, 0x23, 0x49, 0x44, 0x58, 0x48, 0x44, 0x52, 0x01, 0x97, 
+ 0x1e, 0xa0, 0,0x08, 0x2f, 0x23, 0x49, 0x54, 0x42, 0x49, 0x54, 0x53, 
+ 0,0,0,0x09, 0x2f, 0x23, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 
+ 0x53, 0x01, 0xb7, 0x4f, 0x0b, 0x08, 0x2f, 0x23, 0x53, 0x59, 0x53, 0x54, 
+ 0x45, 0x4d, 0,0x81, 0x06, 0xa0, 0x7f, 0x08, 0x2f, 0x23, 0x54, 0x4f, 
+ 0x50, 0x49, 0x43, 0x53, 0x01, 0xb7, 0x1e, 0x10, 0x08, 0x2f, 0x23, 0x55, 
+ 0x52, 0x4c, 0x53, 0x54, 0x52, 0x01, 0xb7, 0x3a, 0x15, 0x08, 0x2f, 0x23, 
+ 0x55, 0x52, 0x4c, 0x54, 0x42, 0x4c, 0x01, 0xb7, 0x2e, 0x0c, 0x0b, 0x2f, 
+ 0x24, 0x46, 0x49, 0x66, 0x74, 0x69, 0x4d, 0x61, 0x69, 0x6e, 0x01, 0,
+ 0,0x09, 0x2f, 0x24, 0x4f, 0x42, 0x4a, 0x49, 0x4e, 0x53, 0x54, 0x01, 
+ 0x81, 0x5f, 0x95, 0x3f, 0x15, 0x2f, 0x24, 0x57, 0x57, 0x41, 0x73, 0x73, 
+ 0x6f, 0x63, 0x69, 0x61, 0x74, 0x69, 0x76, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 
+ 0x73, 0x2f, 0,0,0,0x1d, 0x2f, 0x24, 0x57, 0x57, 0x41, 0x73, 
+ 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x69, 0x76, 0x65, 0x4c, 0x69, 0x6e, 
+ 0x6b, 0x73, 0x2f, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x01, 
+ 0x81, 0x5b, 0x04, 0x11, 0x2f, 0x24, 0x57, 0x57, 0x4b, 0x65, 0x79, 0x77, 
+ 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x2f, 0,0,0,
+ 0x19, 0x2f, 0x24, 0x57, 0x57, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 
+ 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x2f, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 
+ 0x74, 0x79, 0x01, 0x81, 0x57, 0x04, 0x0c, 0x2f, 0x68, 0x68, 0x69, 0x6e, 
+ 0x74, 0x72, 0x6f, 0x2e, 0x68, 0x74, 0x6d, 0x01, 0,0x81, 0x57, 0x14, 
+ 0x3a, 0x3a, 0x44, 0x61, 0x74, 0x61, 0x53, 0x70, 0x61, 0x63, 0x65, 0x2f, 
+ 0x4e, 0x61, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0,0,0x3c, 0x28, 
+ 0x3a, 0x3a, 0x44, 0x61, 0x74, 0x61, 0x53, 0x70, 0x61, 0x63, 0x65, 0x2f, 
+ 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2f, 0x4d, 0x53, 0x43, 0x6f, 
+ 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x2f, 0x43, 0x6f, 0x6e, 
+ 0x74, 0x65, 0x6e, 0x74, 0,0xa2, 0x05, 0x8d, 0x2e, 0x2c, 0x3a, 0x3a, 
+ 0x44, 0x61, 0x74, 0x61, 0x53, 0x70, 0x61, 0x63, 0x65, 0x2f, 0x53, 0x74, 
+ 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2f, 0x4d, 0x53, 0x43, 0x6f, 0x6d, 0x70, 
+ 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x2f, 0x43, 0x6f, 0x6e, 0x74, 0x72, 
+ 0x6f, 0x6c, 0x44, 0x61, 0x74, 0x61, 0,0x6a, 0x1c, 0x29, 0x3a, 0x3a, 
+ 0x44, 0x61, 0x74, 0x61, 0x53, 0x70, 0x61, 0x63, 0x65, 0x2f, 0x53, 0x74, 
+ 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2f, 0x4d, 0x53, 0x43, 0x6f, 0x6d, 0x70, 
+ 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x2f, 0x53, 0x70, 0x61, 0x6e, 0x49, 
+ 0x6e, 0x66, 0x6f, 0,0x62, 0x08, 0x2f, 0x3a, 0x3a, 0x44, 0x61, 0x74, 
+ 0x61, 0x53, 0x70, 0x61, 0x63, 0x65, 0x2f, 0x53, 0x74, 0x6f, 0x72, 0x61, 
+ 0x67, 0x65, 0x2f, 0x4d, 0x53, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 
+ 0x73, 0x65, 0x64, 0x2f, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 
+ 0x6d, 0x2f, 0x4c, 0x69, 0x73, 0x74, 0,0x3c, 0x26, 0x5f, 0x3a, 0x3a, 
+ 0x44, 0x61, 0x74, 0x61, 0x53, 0x70, 0x61, 0x63, 0x65, 0x2f, 0x53, 0x74, 
+ 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2f, 0x4d, 0x53, 0x43, 0x6f, 0x6d, 0x70, 
+ 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x2f, 0x54, 0x72, 0x61, 0x6e, 0x73, 
+ 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x7b, 0x37, 0x46, 0x43, 0x32, 0x38, 0x39, 
+ 0x34, 0x30, 0x2d, 0x39, 0x44, 0x33, 0x31, 0x2d, 0x31, 0x31, 0x44, 0x30, 
+ 0x2d, 0x39, 0x42, 0x32, 0x37, 0x2d, 0x30, 0x30, 0x41, 0x30, 0x43, 0x39, 
+ 0x31, 0x45, 0x39, 0x43, 0x37, 0x43, 0x7d, 0x2f, 0x49, 0x6e, 0x73, 0x74, 
+ 0x61, 0x6e, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2f, 0,0,0,
+ 0x69, 0x3a, 0x3a, 0x44, 0x61, 0x74, 0x61, 0x53, 0x70, 0x61, 0x63, 0x65, 
+ 0x2f, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2f, 0x4d, 0x53, 0x43, 
+ 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x2f, 0x54, 0x72, 
+ 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x7b, 0x37, 0x46, 0x43, 
+ 0x32, 0x38, 0x39, 0x34, 0x30, 0x2d, 0x39, 0x44, 0x33, 0x31, 0x2d, 0x31, 
+ 0x31, 0x44, 0x30, 0x2d, 0x39, 0x42, 0x32, 0x37, 0x2d, 0x30, 0x30, 0x41, 
+ 0x30, 0x43, 0x39, 0x31, 0x45, 0x39, 0x43, 0x37, 0x43, 0x7d, 0x2f, 0x49, 
+ 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2f, 
+ 0x52, 0x65, 0x73, 0x65, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0,0xaf, 
+ 0x33, 0x30, 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0xd5, 0x01, 0xff, 0,0x80, 0,
+ 0x3b, 0,0x16, 0,0x1e, 0,0x02, 0,0x0c, 0,0x55, 0,
+ 0x6e, 0,0x63, 0,0x6f, 0,0x6d, 0,0x70, 0,0x72, 0,
+ 0x65, 0,0x73, 0,0x73, 0,0x65, 0,0x64, 0,0,0,
+ 0x0c, 0,0x4d, 0,0x53, 0,0x43, 0,0x6f, 0,0x6d, 0,
+ 0x70, 0,0x72, 0,0x65, 0,0x73, 0,0x73, 0,0x65, 0,
+ 0x64, 0,0,0,0x7b, 0,0x37, 0,0x46, 0,0x43, 0,
+ 0x32, 0,0x38, 0,0x39, 0,0x34, 0,0x30, 0,0x2d, 0,
+ 0x39, 0,0x44, 0,0x33, 0,0x31, 0,0x2d, 0,0x31, 0,
+ 0x31, 0,0x44, 0,0x30, 0,0xda, 0x1b, 0,0,0,0,
+ 0,0,0x06, 0,0,0,0x4c, 0x5a, 0x58, 0x43, 0x02, 0,
+ 0,0,0x02, 0,0,0,0x02, 0,0,0,0x01, 0,
+ 0,0,0,0,0,0,0x03, 0,0,0,0x0a, 0,
+ 0x04, 0,0x19, 0x3c, 0x2f, 0x42, 0x09, 0,0x16, 0,0x48, 0x48, 
+ 0x41, 0x20, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x34, 0x2e, 
+ 0x37, 0x34, 0x2e, 0x38, 0x37, 0x30, 0x32, 0,0x04, 0,0x24, 0,
+ 0x09, 0x04, 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0xe0, 0xaf, 0xfa, 0x48, 
+ 0xd3, 0x24, 0xc5, 0x01, 0,0,0,0,0,0,0,0,
+ 0x02, 0,0x0c, 0,0x68, 0x68, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x2e, 
+ 0x68, 0x74, 0x6d, 0,0x06, 0,0x09, 0,0x69, 0x74, 0x73, 0x73, 
+ 0x74, 0x65, 0x73, 0x74, 0,0x0c, 0,0x04, 0,0,0,0,
+ 0,0x0d, 0,0,0x10, 0x54, 0x23, 0x53, 0x4d, 0x35, 0x56, 0x7c, 
+ 0x27, 0x01, 0,0,0,0x01, 0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0x01, 0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0x0f, 0,0x04, 
+ 0,0,0,0,0,0x08, 0x20, 0x05, 0,0x71, 0x56, 0,
+ 0x60, 0x03, 0,0x25, 0x22, 0,0x66, 0,0,0xff, 0x4f, 0xbd, 
+ 0x9f, 0x30, 0xe7, 0x8c, 0x89, 0x67, 0x3b, 0x0e, 0x6c, 0x1b, 0xf1, 0x6d, 
+ 0x67, 0x70, 0x84, 0x10, 0x98, 0x72, 0x05, 0x29, 0x9b, 0x0c, 0x84, 0x65, 
+ 0xb8, 0xed, 0x30, 0xa9, 0x8d, 0xa1, 0xa9, 0x4a, 0x9a, 0,0xf2, 0x8d, 
+ 0x8a, 0x52, 0x4b, 0xf2, 0xd4, 0x56, 0x9a, 0x63, 0xa5, 0x28, 0x6e, 0xae, 
+ 0x80, 0x22, 0x17, 0xb4, 0xa0, 0x85, 0xc3, 0x16, 0x77, 0xaa, 0x6e, 0xea, 
+ 0x75, 0x55, 0xdd, 0x51, 0x45, 0x10, 0xa5, 0,0x04, 0x0c, 0,0x1d, 
+ 0xd1, 0x80, 0x99, 0x1c, 0x01, 0xf7, 0x37, 0xbe, 0xe9, 0xf3, 0xbe, 0x99, 
+ 0xef, 0xe7, 0xab, 0x98, 0xbe, 0x42, 0x8d, 0xf1, 0x66, 0xe1, 0x24, 0xe0, 
+ 0x54, 0xac, 0x4b, 0x16, 0xc3, 0x4e, 0xda, 0x65, 0x26, 0xb8, 0x94, 0x26, 
+ 0x8c, 0x12, 0x8c, 0x1a, 0xc5, 0x0c, 0xb1, 0xc2, 0x59, 0xa6, 0xd4, 0x9c, 
+ 0xcc, 0x51, 0x2a, 0xc6, 0x49, 0x64, 0xde, 0x4e, 0xe0, 0xe0, 0xc4, 0xfb, 
+ 0x4f, 0,0x10, 0,0,0,0,0xa0, 0x11, 0x98, 0x21, 0x20, 
+ 0x4e, 0xc6, 0xb7, 0x07, 0xe1, 0xc0, 0x7e, 0xe0, 0xef, 0xfd, 0x0e, 0xeb, 
+ 0x63, 0x2d, 0x6f, 0x8f, 0x6d, 0xde, 0x75, 0xc7, 0x65, 0x9d, 0xd0, 0x1d, 
+ 0xdd, 0xb5, 0x9b, 0x6a, 0x7a, 0xef, 0xf6, 0x69, 0x5d, 0xb9, 0xd6, 0x6c, 
+ 0xd9, 0x76, 0xae, 0x0f, 0x0a, 0xd2, 0x3e, 0x58, 0xb7, 0xfb, 0xf4, 0xb4, 
+ 0xd8, 0xfa, 0xea, 0xdd, 0xed, 0x75, 0x34, 0xb4, 0x74, 0xed, 0xda, 0xcf, 
+ 0x4f, 0xe7, 0xb6, 0x6a, 0xc7, 0x95, 0xe3, 0xf4, 0x87, 0x34, 0xb9, 0x7a, 
+ 0x7b, 0xb5, 0x7c, 0x07, 0xf1, 0xbb, 0x57, 0xbf, 0x73, 0xbb, 0xee, 0x16, 
+ 0x7e, 0x8e, 0xd7, 0xd7, 0x9e, 0xbf, 0xe3, 0xf5, 0x74, 0x6d, 0x3d, 0x3f, 
+ 0xb7, 0x5e, 0x5b, 0xc1, 0xf8, 0x88, 0xe2, 0xf8, 0x1d, 0xb1, 0x85, 0xd4, 
+ 0xd2, 0xee, 0xf8, 0xf5, 0xd5, 0xa1, 0xcb, 0xe4, 0x68, 0xfc, 0xe8, 0xc6, 
+ 0xf5, 0xec, 0xfd, 0xb2, 0x87, 0x0f, 0x2f, 0x8d, 0xaf, 0x3f, 0x5a, 0x5b, 
+ 0xbd, 0xcd, 0xf8, 0x7a, 0xd2, 0xed, 0x9d, 0x69, 0x9e, 0xaf, 0x41, 0x3e, 
+ 0xf6, 0x64, 0x81, 0xf5, 0xaf, 0x0f, 0x96, 0x2b, 0xe1, 0xb7, 0x1e, 0x61, 
+ 0xdc, 0xfd, 0xc2, 0x57, 0xb5, 0x6f, 0x7f, 0xd7, 0xfd, 0xe0, 0xc6, 0x9c, 
+ 0xc5, 0x54, 0x13, 0x04, 0x6d, 0x39, 0xe3, 0xfb, 0x23, 0x33, 0x1f, 0xb0, 
+ 0xd1, 0x43, 0xfe, 0x86, 0xad, 0x39, 0x37, 0xcd, 0x2f, 0x59, 0xc8, 0x2b, 
+ 0xcd, 0xc5, 0x63, 0x4d, 0xc3, 0xd7, 0x7a, 0x6d, 0x98, 0x5a, 0xac, 0xa0, 
+ 0x72, 0xd5, 0x9f, 0xb3, 0x66, 0xcd, 0x54, 0x38, 0xcd, 0xec, 0xa4, 0x4e, 
+ 0x8d, 0xe8, 0x37, 0x3f, 0xe5, 0xea, 0x8b, 0x49, 0x02, 0x81, 0xc1, 0x39, 
+ 0x55, 0xff, 0x74, 0xea, 0x55, 0x68, 0x02, 0x54, 0x46, 0x93, 0x04, 0x07, 
+ 0x36, 0x14, 0x92, 0xa1, 0xf1, 0x15, 0x3e, 0x25, 0x01, 0x60, 0x50, 0xe2, 
+ 0x54, 0x4b, 0xba, 0x60, 0x98, 0x51, 0x55, 0x25, 0x5d, 0xb0, 0xcc, 0xa9, 
+ 0x2a, 0x52, 0x2f, 0xd4, 0xa9, 0x9a, 0xcb, 0x25, 0x5d, 0xd8, 0xf0, 0x73, 
+ 0x15, 0xa4, 0x6b, 0x23, 0xbe, 0xae, 0x02, 0x74, 0x71, 0x43, 0x93, 0xfb, 
+ 0x71, 0xbe, 0x91, 0x02, 0x2d, 0x5f, 0x7d, 0x74, 0x19, 0xc7, 0x97, 0x55, 
+ 0x60, 0x5d, 0x54, 0xf2, 0x25, 0x15, 0x18, 0x95, 0x7c, 0x5f, 0xd2, 0x81, 
+ 0x29, 0x3a, 0x57, 0x4b, 0xba, 0x60, 0x9e, 0x55, 0x55, 0x25, 0x5d, 0xd8, 
+ 0xf2, 0x6b, 0x1f, 0x09, 0x5a, 0x06, 0x74, 0xc4, 0xe7, 0x79, 0xbe, 0x84, 
+ 0x9c, 0xff, 0xaa, 0x49, 0xbc, 0x69, 0x56, 0x49, 0x61, 0x8d, 0x56, 0x44, 
+ 0xf3, 0x66, 0xab, 0xc3, 0xf9, 0x2d, 0x49, 0xd5, 0x7c, 0x55, 0x61, 0x88, 
+ 0x86, 0xd5, 0x27, 0x1b, 0xd7, 0x26, 0xe8, 0x5b, 0x92, 0xbe, 0x21, 0xff, 
+ 0x88, 0x4d, 0xab, 0x87, 0xf4, 0x45, 0x96, 0xdd, 0xa0, 0xab, 0x08, 0xff, 
+ 0xef, 0x9f, 0x34, 0x9a, 0xe5, 0x6e, 0xec, 0x7d, 0x88, 0xe8, 0x29, 0x81, 
+ 0xd5, 0xc3, 0xe5, 0x16, 0xf8, 0x63, 0xfa, 0x76, 0x42, 0x74, 0xab, 0x4d, 
+ 0x62, 0xac, 0x56, 0x5c, 0x89, 0xe9, 0x96, 0xa1, 0x04, 0xfa, 0x56, 0x51, 
+ 0x82, 0x74, 0x8b, 0x52, 0xa2, 0x74, 0x4b, 0x58, 0xc2, 0xab, 0x25, 0x58, 
+ 0x42, 0xba, 0x85, 0x2c, 0x71, 0xdd, 0x72, 0xff, 0x40, 0x7c, 0x48, 0x52, 
+ 0x37, 0x7f, 0x2a, 0x54, 0x37, 0x77, 0x95, 0xa8, 0x3c, 0xaa, 0x4f, 0x6a, 
+ 0xe2, 0x55, 0xe2, 0x6a, 0x02, 0x7d, 0xea, 0xa1, 0xc5, 0xf5, 0x0d, 0xa1, 
+ 0x44, 0x5e, 0xcd, 0x79, 0x1f, 0x65, 0xd6, 0x4a, 0x67, 0xf4, 0xfa, 0xa9, 
+ 0x26, 0x5e, 0x67, 0x72, 0xad, 0xad, 0xdd, 0xfa, 0x69, 0x93, 0xcb, 0x27, 
+ 0x8b, 0xae, 0x6f, 0x55, 0xb9, 0x3b, 0x59, 0x17, 0xd8, 0xcb, 0x2a, 0x8f, 
+ 0x27, 0x1e, 0x83, 0x0b, 0x2b, 0x57, 0x2b, 0xc2, 0x58, 0x0c, 0xad, 0x7e, 
+ 0x9e, 0x0a, 0xc3, 0x64, 0x7c, 0xd6, 0xf5, 0xa8, 0xb0, 0x5d, 0x16, 0x89, 
+ 0xad, 0x47, 0x85, 0xb5, 0xb2, 0xcc, 0xf5, 0x0a, 0x2b, 0xef, 0xc9, 0x61, 
+ 0xaf, 0x06, 0x59, 0xce, 0x56, 0x85, 0xc1, 0x32, 0x4c, 0xfb, 0x7c, 0x2a, 
+ 0x2c, 0x93, 0x65, 0x8d, 0xed, 0x6f, 0x85, 0x5b, 0x59, 0x8c, 0x6c, 0xa4, 
+ 0x2a, 0xb6, 0xcf, 0x4c, 0xfb, 0xc9, 0x29, 0xf7, 0x9b, 0xc2, 0x62, 0x66, 
+ 0xba, 0xf6, 0x6f, 0x15, 0x56, 0x66, 0x62, 0xcd, 0xd5, 0x76, 0x85, 0xed, 
+ 0x8c, 0x66, 0xd6, 0xfc, 0x14, 0xb7, 0xcf, 0xb0, 0xb3, 0x36, 0xa8, 0xc7, 
+ 0x7d, 0xc2, 0x64, 0x19, 0xa4, 0x3f, 0xf7, 0x85, 0x6d, 0x99, 0x61, 0x5d, 
+ 0xf7, 0x0a, 0x9b, 0x67, 0x96, 0xb4, 0x6f, 0x48, 0x31, 0x59, 0x44, 0xe0, 
+ 0xbe, 0x91, 0xd0, 0xfb, 0xe6, 0x52, 0xa2, 0xfb, 0x26, 0x52, 0xc2, 0x5c, 
+ 0x74, 0x7c, 0x93, 0xd8, 0x15, 0x5f, 0x1a, 0xe9, 0x13, 0x5a, 0x58, 0xc9, 
+ 0x5c, 0x48, 0x1a, 0xe8, 0x53, 0x90, 0x94, 0x54, 0xa4, 0x24, 0x29, 0x85, 
+ 0x8a, 0x91, 0x24, 0xa4, 0x50, 0x2a, 0x92, 0x92, 0x14, 0x42, 0x45, 0x48, 
+ 0x92, 0x52, 0xa8, 0x15, 0x49, 0x49, 0x0a, 0xa1, 0x22, 0x24, 0x49, 0x29, 
+ 0x54, 0x8a, 0x24, 0x24, 0x85, 0x50, 0x91, 0x92, 0xa4, 0x14, 0x2a, 0x55, 
+ 0x92, 0x37, 0x87, 0x92, 0x76, 0x1a, 0xc5, 0x25, 0xe0, 0x35, 0x8d, 0x4b, 
+ 0xc4, 0x6b, 0x20, 0x94, 0x90, 0xbb, 0xa1, 0x29, 0xc1, 0x5c, 0x53, 0x7f, 
+ 0xee, 0x0e, 0xef, 0xd0, 0x44, 0x1b, 0x10, 0x1b, 0xff, 0xb4, 0x95, 0xab, 
+ 0x0e, 0x59, 0x54, 0x41, 0x43, 0x64, 0x41, 0x4d, 0xb2, 0x06, 0xf3, 0x5d, 
+ 0xba, 0x7a, 0x35, 0xf3, 0xb6, 0xba, 0x06, 0x72, 0xdd, 0x56, 0xb9, 0x0a, 
+ 0xfa, 0xc1, 0x36, 0xc9, 0xc9, 0x90, 0x96, 0x90, 0xd0, 0x8d, 0x9a, 0x7d, 
+ 0x43, 0xa1, 0x49, 0x69, 0x61, 0x29, 0x52, 0x5d, 0x93, 0xda, 0xae, 0x67, 
+ 0xcd, 0x52, 0xbe, 0xc9, 0xef, 0x92, 0xf7, 0x68, 0x68, 0x26, 0x6d, 0x72, 
+ 0x92, 0x48, 0xa3, 0x1f, 0x9a, 0x99, 0x33, 0xd9, 0x2d, 0x22, 0xa2, 0x71, 
+ 0x3d, 0x6b, 0x34, 0xe3, 0xc5, 0x4d, 0x84, 0x26, 0x9a, 0x77, 0x26, 0x68, 
+ 0x78, 0xaf, 0xa8, 0xb6, 0xce, 0xd1, 0xf4, 0x79, 0x71, 0xeb, 0xdc, 0x5e, 
+ 0x66, 0xa3, 0x71, 0x33, 0x23, 0xe6, 0xd9, 0xd6, 0xcc, 0x6c, 0x3c, 0xc4, 
+ 0x6c, 0x6a, 0xc3, 0x40, 0x7d, 0x9b, 0xf7, 0x73, 0xce, 0xd8, 0x38, 0x23, 
+ 0xf5, 0x47, 0xc7, 0x70, 0x60, 0x9c, 0x2d, 0xc3, 0x39, 0xc7, 0xc7, 0xcb, 
+ 0xcb, 0xa7, 0xb6, 0x0f, 0x55, 0xbd, 0x7a, 0xf3, 0x66, 0xe7, 0x6a, 0x7b, 
+ 0x8f, 0xff, 0xbd, 0x9c, 0x80, 0x7c, 0x8f, 0x61, 0xbe, 0xbf, 0x70, 0x32, 
+ 0xda, 0xbd, 0x13, 0xe4, 0x19, 0x74, 0x64, 0x54, 0xba, 0x66, 0x49, 0x4d, 
+ 0xb3, 0x47, 0xeb, 0xdf, 0xbe, 0x7a, 0x67, 0xdf, 0x73, 0xd3, 0xaf, 0xfd, 
+ 0x9e, 0xfe, 0xeb, 0x44, 0x8b, 0xb3, 0x55, 0xcf, 0xc9, 0xbc, 0xaa, 0xf7, 
+ 0x7e, 0xc8, 0xbd, 0x5b, 0xe4, 0x0f, 0xd8, 0x52, 0xf8, 0x11, 0xab, 0x12, 
+ 0xff, 0x63, 0x55, 0x03, 0x3e, 0xa3, 0x01, 0xd0, 0xd1, 0x67, 0x8e, 0x86, 
+ 0xa3, 0x14, 0x2b, 0x99, 0x5d, 0x58, 0xf0, 0x4f, 0x2e, 0x43, 0xbb, 0xf0, 
+ 0xe0, 0x52, 0x7c, 0x49, 0xab, 0x98, 0xf0, 0x03, 0x4f, 0x6e, 0xc0, 0x7e, 
+ 0xf2, 0x7c, 0xfa, 0x87, 0xad, 0xaf, 0xa3, 0xe2, 0x89, 0xf1, 0x13, 0xfe, 
+ 0xfb, 0x27, 0xff, 0x6f, 0x93, 0x1f, 0xdc, 0x25, 0x8b, 0x8a, 0xa5, 0x7f, 
+ 0xe0, 0xc1, 0x07, 0xd5, 0xab, 0xc0, 0xdb, 0x0d, 0x1f, 0xa2, 0x86, 0x83, 
+ 0x02, 0x1f, 0x3e, 0x37, 0x0f, 0xde, 0x36, 0xf8, 0x18, 0x45, 0x8c, 0x4a, 
+ 0x1b, 0xff, 0x28, 0x7c, 0x8e, 0x8f, 0xa3, 0x78, 0xe1, 0xd6, 0x5e, 0x1f, 
+ 0xc8, 0x89, 0x13, 0xdf, 0xdf, 0x46, 0xcf, 0x2e, 0xaa, 0,0x56, 0x92, 
+ 0xff, 0xbb, 0x7c, 0xe2, 0xe3, 0x74, 0xf1, 0x16, 0x73, 0xfe, 0x18, 0x87, 
+ 0x1f, 0xd4, 0xa9, 0xc4, 0xb7, 0x19, 0x9f, 0xdf, 0x8c, 0x9b, 0x6f, 0x0f, 
+ 0xe3, 0xc6, 0x8d, 0x36, 0xf2, 0xf8, 0x3c, 0x77, 0xec, 0xe2, 0x8b, 0x96, 
+ 0xb7, 0x1d, 0x3d, 0x99, 0x72, 0xc9, 0x42, 0x89, 0x9f, 0x71, 0xbd, 0x3e, 
+ 0x97, 0x1f, 0x3f, 0x33, 0xc2, 0xc8, 0x67, 0x27, 0x64, 0xe7, 0x73, 0x94, 
+ 0x94, 0x95, 0x95, 0x7c, 0xa6, 0xcb, 0x95, 0xa7, 0x65, 0x3a, 0xb2, 0x72, 
+ 0xed, 0xb5, 0x25, 0xd4, 0xba, 0xd9, 0x78, 0xba, 0x7c, 0x57, 0x32, 0x9a, 
+ 0x3b, 0x2c, 0x3f, 0x07, 0x04, 0x48, 0xf9, 0x7e, 0xbc, 0xd4, 0x56, 0xb9, 
+ 0xd2, 0x18, 0x38, 0x69, 0x1a, 0xa6, 0x0c, 0x61, 0xc3, 0x95, 0x3d, 0x82, 
+ 0x82, 0x9f, 0xe1, 0x66, 0x9a, 0x19, 0x65, 0x7e, 0x6d, 0x81, 0xbf, 0xda, 
+ 0x97, 0x27, 0x6d, 0x1b, 0xb3, 0x8f, 0x1d, 0x33, 0x03, 0xd9, 0xb2, 0x35, 
+ 0x23, 0xd9, 0xb3, 0x5e, 0xd3, 0xd1, 0xcb, 0x9a, 0xea, 0x37, 0x43, 0xba, 
+ 0x74, 0x63, 0x22, 0xb7, 0x6f, 0x99, 0xe1, 0xae, 0xcd, 0x19, 0xd5, 0xb6, 
+ 0xdd, 0x19, 0xd9, 0xc6, 0xec, 0x19, 0x61, 0xad, 0xfb, 0xdc, 0xd7, 0x8c, 
+ 0xce, 0x0d, 0xfa, 0x12, 0x05, 0xb6, 0x7a, 0x94, 0x86, 0x69, 0xea, 0x16, 
+ 0x5d, 0x75, 0xeb, 0x3c, 0xc3, 0xc6, 0x8d, 0x1a, 0xe1, 0xce, 0x3d, 0x1a, 
+ 0xe5, 0x38, 0x48, 0xed, 0x39, 0x23, 0x2f, 0x6b, 0x75, 0xb4, 0x69, 0xa8, 
+ 0xca, 0xd6, 0xfb, 0x7c, 0xda, 0x0f, 0x1e, 0x23, 0xdd, 0x0b, 0x51, 0xc0, 
+ 0x0b, 0xc2, 0xd4, 0x23, 0x42, 0x76, 0x55, 0x23, 0xbb, 0x0d, 0x57, 0x8d, 
+ 0x0c, 0xde, 0x65, 0x8d, 0xee, 0x3c, 0x6c, 0xbb, 0x3f, 0xcd, 0x0c, 0x69, 
+ 0x29, 0x74, 0xed, 0x42, 0x44, 0xf1, 0x35, 0x28, 0x31, 0x5e, 0xd8, 0x08, 
+ 0x2f, 0xc5, 0xd8, 0x23, 0x45, 0x17, 0x65, 0x8d, 0x16, 0x6c, 0x9c, 0x36, 
+ 0x6a, 0x91, 0x91, 0xda, 0x88, 0x6f, 0xde, 0xdb, 0x28, 0x47, 0x47, 0xbe, 
+ 0x4e, 0x21, 0xf9, 0x78, 0x5b, 0xf4, 0xf8, 0x2f, 0x6e, 0xb4, 0x77, 0x6f, 
+ 0x6e, 0xa4, 0x57, 0xaf, 0x6e, 0xc4, 0x97, 0x52, 0x79, 0x28, 0x32, 0xc8, 
+ 0xdd, 0x37, 0x48, 0x34, 0x78, 0xd6, 0xd4, 0x3e, 0x7f, 0xb9, 0x89, 0x44, 
+ 0x49, 0x2f, 0x6f, 0xd4, 0xb7, 0x64, 0x6f, 0x91, 0xa4, 0xdf, 0xe5, 0xc8, 
+ 0xaf, 0x5f, 0xdf, 0xe8, 0xef, 0x27, 0xf3, 0xf5, 0x7a, 0xdf, 0xbc, 0x73, 
+ 0x36, 0xbc, 0xd5, 0x0e, 0xed, 0x73, 0x86, 0x74, 0xc7, 0x99, 0x77, 0xe9, 
+ 0xa0, 0xdf, 0xdf, 0xdf, 0xe1, 0xe4, 0x5d, 0x30, 0xa7, 0xe9, 0x99, 0x9d, 
+ 0x38, 0x9b, 0x3e, 0x4c, 0xfe, 0xa0, 0xf3, 0x86, 0x43, 0x1f, 0xf1, 0x54, 
+ 0xf7, 0xe2, 0x39, 0xc3, 0x41, 0x86, 0xd8, 0x56, 0xb1, 0xb9, 0xdf, 0x16, 
+ 0xf4, 0xc3, 0x5e, 0xb3, 0xa5, 0x2a, 0xdc, 0xc7, 0xdf, 0xb7, 0x7e, 0x3f, 
+ 0x07, 0x6f, 0x97, 0,0x9e, 0,0,0,0,0,0,0,
+ 0,0x79, 0x3c, 0x06, 0xe7, 0x94, 0xdd, 0x79, 0x47, 0xf4, 0x5e, 0x3e, 
+ 0xef, 0x5e, 0xde, 0x9f, 0x5e, 0xbf, 0x1a, 0xf4, 0x3e, 0xf9, 0x5f, 0xe5, 
+ 0x7f, 0xfd, 0xff, 0xa6, 0x3b, 0x80, 0xe0, 0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0xf9, 0,0,0x80, 0x02, 
+ 0,0,0,0x01, 0,0,0,0x08, 0,0,0,0x28, 
+ 0,0,0,0xda, 0x1b, 0,0,0,0,0,0,0xae, 
+ 0x06, 0,0,0,0,0,0,0,0x80, 0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,
+};
+




More information about the wine-patches mailing list